1. NodeBox 1
    1. Homepage
    2. NodeBox 3Node-based app for generative design and data visualization
    3. NodeBox OpenGLHardware-accelerated cross-platform graphics library
    4. NodeBox 1Generate 2D visuals using Python code (Mac OS X only)
  2. Gallery
  3. Documentation
  4. Forum
  5. Blog

Reference | lineheight()


Syntax
lineheight(height=None)

DescriptionSets the line spacing of text in a block. Text in a block wraps across multiple lines when the width parameter of the text() command is specified. The default lineheight is 1.2 (120 percent of font size).
Returnsthe current lineheight


 
Example
GCD
fill(0.2)
fontsize(16)
lineheight(0.4)
quip = "If it ain't fun make it fun"
text(quip, 10, 55, width=80)